home *** CD-ROM | disk | FTP | other *** search
- /* AboutLOCCounter.c -- Modal one-shot dialog */
- /* Created 10/4/91 10:40 AM by AppMaker */
-
- #include "ResourceDefs.h"
- #include "DialogAids.h"
- #include "TBUtilities.h"
- #include "AboutLOCCounter.h"
-
- #define OKButton 1
- #define ThinkCSourceMetricsToLabel 2
- #define Line3 3
- #define DevelopedByLabel 4
- #define SteveNiesLabel 5
- #define x122N4thAvenueLabel 6
- #define IndialanticFL32907Label 7
- #define SoftwareProductivitySolLabel 8
- #define v10Label 9
-
- /*----------*/
- static void DoOKButton (void);
- static void DoOKButton ()
- {
- } /*DoOKButton*/
-
- /*----------*/
- void GetAboutLOCCounter (AboutLOCCounter)
- AboutLOCCounterRec *AboutLOCCounter;
- {
- DialogPtr theDialog;
- short itemNr;
- register AboutLOCCounterPtr info;
-
- InitCursor ();
- PositionDialog ( 'DLOG', AboutLOCCounterID );
- theDialog = GetNewDialog (AboutLOCCounterID, NULL, (WindowPtr) -1L);
- SetPort (theDialog);
- info = AboutLOCCounter;
- SetUserItem (Line3, (ProcPtr) &LineItem);
- ShowWindow (theDialog);
- OutlineButton ( OKButton );
- ModalDialog (NULL, &itemNr);
- switch (itemNr) {
- case OKButton:
- DoOKButton ();
- break;
- } /*case*/
- DisposDialog (theDialog);
- } /*GetAboutLOCCounter*/
-
- /* AboutLOCCounter.c */
-